home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / lightning-0.8-tb-win.xpi / chrome / calendar.jar / content / calendar / calendar-unifinder-todo.xul < prev    next >
Extensible Markup Language  |  2008-01-17  |  4KB  |  85 lines

  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.    -
  5.    - The contents of this file are subject to the Mozilla Public License Version
  6.    - 1.1 (the "License"); you may not use this file except in compliance with
  7.    - the License. You may obtain a copy of the License at
  8.    - http://www.mozilla.org/MPL/
  9.    -
  10.    - Software distributed under the License is distributed on an "AS IS" basis,
  11.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.    - for the specific language governing rights and limitations under the
  13.    - License.
  14.    -
  15.    - The Original Code is Lightning code.
  16.    -
  17.    - The Initial Developer of the Original Code is Oracle Corporation
  18.    - Portions created by the Initial Developer are Copyright (C) 2005
  19.    - the Initial Developer. All Rights Reserved.
  20.    -
  21.    - Contributor(s):
  22.    -   Mike Shaver <shaver@mozilla.org>
  23.    -   Simon Paquet <bugzilla@babylonsounds.com>
  24.    -   Robin Edrenius <robin.edrenius@gmail.com>
  25.    -   Michael Buettner <michael.buettner@sun.com>
  26.    -   Philipp Kewisch <mozilla@kewis.ch>
  27.    -
  28.    - Alternatively, the contents of this file may be used under the terms of
  29.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  30.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  31.    - in which case the provisions of the GPL or the LGPL are applicable instead
  32.    - of those above. If you wish to allow use of your version of this file only
  33.    - under the terms of either the GPL or the LGPL, and not to allow others to
  34.    - use your version of this file under the terms of the MPL, indicate your
  35.    - decision by deleting the provisions above and replace them with the notice
  36.    - and other provisions required by the GPL or the LGPL. If you do not delete
  37.    - the provisions above, a recipient may use your version of this file under
  38.    - the terms of any one of the MPL, the GPL or the LGPL.
  39.    -
  40.    - ***** END LICENSE BLOCK ***** -->
  41.  
  42. <!DOCTYPE overlay [
  43.   <!ENTITY % dtd2 SYSTEM "chrome://calendar/locale/calendar.dtd" > %dtd2;
  44.   <!ENTITY % dtd3 SYSTEM "chrome://calendar/locale/calendar-event-dialog.dtd"> %dtd3;
  45. ]>
  46.  
  47. <?xml-stylesheet type="text/css" href="chrome://calendar/content/calendar-bindings.css"?>
  48. <?xml-stylesheet type="text/css" href="chrome://calendar/skin/calendar-task-view.css"?>
  49.  
  50. <overlay xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  51.  
  52.   <script type="application/x-javascript" src="chrome://calendar/content/calendar-task-tree.js"/>
  53.   <script type="application/x-javascript" src="chrome://calendar/content/calendar-unifinder-todo.js"/>
  54.   <script type="application/x-javascript" src="chrome://global/content/globalOverlay.js"/>
  55.   
  56.   <vbox id="todo-tab-panel" persist="height,collapsed" flex="1">
  57.     <box id="todo-label" align="left" collapsed="true">
  58.       <label flex="1" crop="end" style="font-weight: bold" value="&calendar.unifinder.todoitems.label;" control="unifinder-todo-tree"/>
  59.     </box>
  60.     <box align="center">
  61.       <checkbox id="hide-completed-checkbox"
  62.                 label="&calendar.unifinder.hidecompletedtodos.label;"
  63.                 flex="1"
  64.                 crop="end"
  65.                 oncommand="toDoUnifinderRefresh();"
  66.                 persist="checked"/>
  67.     </box>
  68.     <calendar-task-tree id="unifinder-todo-tree" flex="1"
  69.                         visible-columns="completed priority title"
  70.                         persist="visible-columns ordinals widths sort-active sort-direction"
  71.                         context="taskitem-context-menu"
  72.                         onselect="document.commandDispatcher.updateCommands('calendar_commands');"/>
  73.     <box align="center" class="task-quickadd-box">
  74.       <textbox id="unifinder-task-edit-field"
  75.                class="task-edit-field"
  76.                flex="1"
  77.                value="&calendar.task.edit.instructions.label;"
  78.                instructions="&calendar.task.edit.instructions.label;"
  79.                onfocus="taskEdit.onFocus(event)"
  80.                onblur="taskEdit.onBlur(event)"
  81.                onkeypress="taskEdit.onKeyPress(event)"/>
  82.     </box>
  83.   </vbox>
  84. </overlay>
  85.